// Custom admin menu commands.
// For more information:
//
// http://wiki.alliedmods.net/Custom_Admin_Menu_%28SourceMod%29
//
// Note: This file must be in Valve KeyValues format (no multiline comments)
//

"Commands"
{
	"Fun modes"
	{
		"Jetpack"
		{
			"cmd"			"sm_jetpack #1"
			"execute"		"server"			
			"1"
			{
				"type" 		"list"
				"title"		"Jetpack:"
				"1"			"1"
				"1."		"On"
				"2"			"0"
				"2."		"Off"
			}
		}
		"Parachute"
		{
			"cmd"			"sm_parachute_enabled #1"
			"execute"		"server"			
			"1"
			{
				"type" 		"list"
				"title"		"parachute:"
				"1"			"1"
				"1."		"On"
				"2"			"0"
				"2."		"Off"
			}
		}		
	}
	"Gun Game"
	{		
		"Gun Game ON/OFF"
		{		
		    "cmd"			"sm_gungame_enabled #1"
		    "execute"		"server"
			"1"
			{
			    "type" 		"list"
			    "title"		"commands:"
			    "1"		    "1"
			    "1."	    "Turn ON Gun Game"
			    "2"		    "0"
			    "2."	    "Turn OFF Gun Game"
			}
		}
		"Gun Game Flags ON/OFF"
		{		
		    "cmd"			"sm_gungame_flags #1"
		    "execute"		"server"
			"1"
			{
			    "type" 		"list"
			    "title"		"commands:"
			    "1"		    "1"
			    "1."	    "Turn ON Flag Caps"
			    "2"		    "0"
			    "2."	    "Turn OFF Flag Caps (Def)"
			}
		}
		"Gun Game Spades ON/OFF"
		{		
		    "cmd"			"sm_gungame_spades #1"
		    "execute"		"server"
			"1"
			{
			    "type" 		"list"
			    "title"		"commands:"
			    "1"		    "1"
			    "1."	    "Enable Spades (Def)"
			    "2"		    "0"
			    "2."	    "Disable spades"
			}
		}		
	}
} 